C# |
---|
public static Void CreateFolder(String path) |
C# |
---|
using LJCNetCommon; // Creates a Folder Path if it does not already exist. private static void CreateFolder() { string fileSpec = @"SubFolder\File.txt"; // Creates folder "SubFolder" from the current folder. NetFile.CreateFolder(fileSpec); } |